home *** CD-ROM | disk | FTP | other *** search
/ Hackers Magazine 57 / CdHackersMagazineNr57.iso / Software / Programming / RJTextEd.exe / {app} / InstallData / Syntax / Pascal.ini < prev    next >
Encoding:
INI File  |  2008-08-07  |  665 b   |  29 lines

  1. [MultiHighlight]
  2. Syntax=
  3. File=
  4.  
  5. [Comment]
  6. 1=*************************************************************
  7. 2=<b>Syntax:</b> Turbo/Free Pascal & Delphi
  8. 3=<b>Author:</b> Rickard Johansson
  9. 4=<b>Version:</b> 1.2
  10. 5=<b>Date:</b> 2007-01-29
  11. 6=
  12. 7=<b>Recommended colors:</b>
  13. 8=This syntax definition is included with the main program
  14. 9=installation. So the recommended colors are already set
  15. 10=after the program is installed.
  16. 11=*************************************************************
  17.  
  18. [Sample]
  19. 1=procedure TestNumber;
  20. 2=var
  21. 3=I : Integer;
  22. 4=begin
  23. 5=I := GetNumber;
  24. 6={ Test number }
  25. 7=if I < 20 then
  26. 8=ShowMessage('Less than 20');
  27. 9=end;
  28.  
  29.